/** * This file was auto-generated by Fern from our API Definition. */ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Skyflow from "../../../index"; export declare namespace BinLookup { interface Options { environment?: core.Supplier; /** Specify a custom URL to connect the client to. */ baseUrl?: core.Supplier; token: core.Supplier; fetcher?: core.FetchFunction; } interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; /** The number of times to retry the request. Defaults to 2. */ maxRetries?: number; /** A hook to abort the request. */ abortSignal?: AbortSignal; /** Additional headers to include in the request. */ headers?: Record; } } export declare class BinLookup { protected readonly _options: BinLookup.Options; constructor(_options: BinLookup.Options); /** * Note: This endpoint is in beta and subject to change.

Returns the specified card metadata. * * @param {Skyflow.V1BinListRequest} request * @param {BinLookup.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Skyflow.NotFoundError} * * @example * await client.binLookup.binListServiceListCardsOfBin({ * BIN: "012345" * }) */ binListServiceListCardsOfBin(request?: Skyflow.V1BinListRequest, requestOptions?: BinLookup.RequestOptions): core.HttpResponsePromise; private __binListServiceListCardsOfBin; protected _getAuthorizationHeader(): Promise; }